home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Programming / AmigaTalk / general / tests.st < prev    next >
Text File  |  1992-09-08  |  180b  |  24 lines

  1. Class One
  2. | two |
  3. [
  4.     start
  5.         ^ self one
  6. |
  7.     one
  8.         two <- Two new.
  9.         two two: self
  10. |
  11.     three
  12.         two four
  13. ]
  14. Class Two
  15. [
  16.     two: back
  17.         back three
  18. |
  19.     four
  20.         'in four' print.
  21.         self gak
  22. ]
  23.  
  24.